projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
94f0cb9
)
* xfns.c (x_window): Remove redundant cast.
author
Paul Eggert
<eggert@cs.ucla.edu>
Mon, 25 Jun 2012 07:45:49 +0000
(
00:45
-0700)
committer
Paul Eggert
<eggert@cs.ucla.edu>
Mon, 25 Jun 2012 07:45:49 +0000
(
00:45
-0700)
src/ChangeLog
patch
|
blob
|
history
src/xfns.c
patch
|
blob
|
history
diff --git
a/src/ChangeLog
b/src/ChangeLog
index 87c944d3d49cbd26d5ae76646a6ed6ce6bdb14a9..3ad8c14fa2d2d1af52e1c746341381bf2512b2fa 100644
(file)
--- a/
src/ChangeLog
+++ b/
src/ChangeLog
@@
-1,3
+1,7
@@
+2012-06-25 Paul Eggert <eggert@cs.ucla.edu>
+
+ * xfns.c (x_window): Remove redundant cast.
+
2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
* xmenu.c (xmenu_show, xdialog_show): Explicit cast from
diff --git
a/src/xfns.c
b/src/xfns.c
index d49f0ea1458ad109a8dd8a58c0e97c9d1e2a6fb8..b5d0102486c93a9adff13defc76f5802f6aa00ce 100644
(file)
--- a/
src/xfns.c
+++ b/
src/xfns.c
@@
-2503,7
+2503,7
@@
x_window (struct frame *f, long window_prompting, int minibuffer_only)
it is safe to free it while the frame exists.
It isn't worth the trouble of arranging to free it
when the frame is deleted. */
- tem =
(char *)
xstrdup (shell_position);
+ tem = xstrdup (shell_position);
XtSetArg (gal[gac], XtNgeometry, tem); gac++;
XtSetValues (shell_widget, gal, gac);
}